home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / setbuf.c < prev    next >
C/C++ Source or Header  |  1988-06-10  |  1KB  |  53 lines

  1. /* 
  2.  * setbuf.c --
  3.  *
  4.  *    Source code for the "setbuf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: setbuf.c,v 1.1 88/06/10 16:23:57 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "stdio.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * setbuf --
  26.  *
  27.  *    Use a user-allocated buffer for a stdio stream.
  28.  *
  29.  * Results:
  30.  *    None.
  31.  *
  32.  * Side effects:
  33.  *    From now on, buf will be used as the buffer for stream.  If
  34.  *    buf is NULL, then the stream will be unbuffered.
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. void
  40. setbuf(stream, buf)
  41.     FILE *stream;        /* Stream to be re-buffered. */
  42.     char *buf;            /* Buffer area;  must hold at least BUFSIZ
  43.                  * bytes, and must live as long as stream
  44.                  * does.  NULL means stream should be
  45.                  * unbuffered. */
  46. {
  47.     if (buf == 0) {
  48.     (void) setvbuf(stream, buf, _IONBF, 1);
  49.     } else {
  50.     (void) setvbuf(stream, buf, _IOFBF, BUFSIZ);
  51.     }
  52. }
  53.